home *** CD-ROM | disk | FTP | other *** search
/ Champak 43 / Vol 43.iso / games / superdog.swf / scripts / frame_2 / DoAction.as
Encoding:
Text File  |  2007-06-25  |  245 b   |  14 lines

  1. function myMusic()
  2. {
  3.    ms_music = new Sound();
  4.    ms_music.attachSound("Mainscreen_mp3");
  5.    ms_music.start();
  6.    ms_music.onSoundComplete = function()
  7.    {
  8.       myMusic();
  9.    };
  10. }
  11. stopAllSounds();
  12. myMusic();
  13. var ms_play = false;
  14.